home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / src / turlwin9.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  808 b   |  28 lines

  1. //    Copyright (c) 1994, University of Kansas, All Rights Reserved
  2. //
  3. //    Class:        TURLWindow
  4. //    Include File:    turlwind.h
  5. //    Purpose:    Provide a window for the viewing of a URL.
  6. //    Remarks/Portability/Dependencies/Restrictions:
  7. //    Revision History:
  8. //        03-28-94    created
  9. #include"turlwind.h"
  10.  
  11. void TURLWindow::IndexInit()    {
  12. //    Purpose:    The currently owned view is a searchable index.
  13. //            Query the user for a search value and take
  14. //            appropriate actions.
  15. //    Arguments:    void
  16. //    Return Value:    void
  17. //    Remarks/Portability/Dependencies/Restrictions:
  18. //    Revision History:
  19. //        03-28-94    created
  20.  
  21.     //    Enable the search index command.
  22.     enableCommand(cmSearchIndex);
  23.  
  24.  
  25.     //    Do set a member to know that this is an index in case we
  26.     //    receive an incorrect request to search.
  27.     B_isIndex = True;
  28. }